home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / gopher / Unix / sgopher0.3 / conf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-07  |  1.2 KB  |  48 lines

  1. /*
  2.     HOST .......... default host
  3.     PORT .......... default port
  4.     GOPHADM ....... name of gopher help contact
  5.     GOPHPHN ....... phone number for gopher help
  6.     GOPHADDR ...... address for bounced mail
  7.     GOVCOMP ....... define if you want COMSEC warning on startup
  8.     LOGFILE ....... define file name for logging information
  9.             if run under inetd
  10.     TIMEOUT ....... number of seconds for user input timeout
  11.             undefine if you don't want timeout checking
  12.     VMS ........... (*) should already be defined for VMS
  13.     ULTRIX ........ define for Ultrix
  14.     NEED_STRDUP ... (*) if strdup not in string library
  15.     KRC ........... (*) defined for old style function headers
  16.  
  17.     * = should be defined automatically
  18. */
  19. #define HOST "ccfiris"
  20. #define PORT "70"
  21. #define GOPHADM "Sean Fuller"
  22. #define GOPHPHN "7560"
  23. #define GOPHADDR "gopher@ccfiris"
  24. /*
  25.     I used an if statement here because it is not run under inetd
  26.     on our VMS and ULTRIX systems.
  27. */
  28. #ifndef VMS
  29. #ifndef ULTRIX
  30. #define GOVCOMP
  31. #define LOGFILE "/usr1/people/c60201/gopher/sgopher.log"
  32. #define TIMEOUT 30
  33. #endif
  34. #endif
  35.  
  36. /*
  37.     Hopefully, you won't have to change anything below here.
  38.     This stuff is for determining changes in code by architecture.
  39. */
  40. #ifdef VMS
  41. #define NEED_STRDUP
  42. #endif
  43.  
  44. #ifdef ULTRIX
  45. #define NEED_STRDUP
  46. #define KRC
  47. #endif
  48.